Introduction

In this report, we extract information about published JOSS papers and generate graphics as well as a summary table that can be downloaded and used for further analyses.

Load required R packages

suppressPackageStartupMessages({
  library(tibble)
  library(rcrossref)
  library(dplyr)
  library(tidyr)
  library(ggplot2)
  library(lubridate)
  library(gh)
  library(purrr)
  library(jsonlite)
  library(DT)
  library(plotly)
  library(citecorp)
  library(readr)
})
## Keep track of the source of each column
source_track <- c()

## Determine whether to add a caption with today's date to the (non-interactive) plots
add_date_caption <- TRUE
if (add_date_caption) {
  dcap <- lubridate::today()
} else {
  dcap <- ""
}
## Read archived version of summary data frame, to use for filling in 
## information about software repositories (due to limit on API requests)
## Sort by the date when software repo info was last obtained
papers_archive <- readRDS(gzcon(url("https://github.com/openjournals/joss-analytics/blob/gh-pages/joss_submission_analytics.rds?raw=true"))) %>%
  dplyr::arrange(!is.na(repo_info_obtained), repo_info_obtained)

## Similarly for citation analysis, to avoid having to pull down the 
## same information multiple times
citations_archive <- readr::read_delim(
  url("https://github.com/openjournals/joss-analytics/blob/gh-pages/joss_submission_citations.tsv?raw=true"),
  col_types = cols(.default = "c"), col_names = TRUE,
  delim = "\t")

Collect information about papers

Pull down papers and citation info from Crossref

We get the information about published JOSS papers from Crossref, using the rcrossref R package. This package is also used to extract citation counts.

## Fetch JOSS papers from Crossref
## Only 1000 papers at the time can be pulled down
lim <- 1000
papers <- rcrossref::cr_works(filter = c(issn = "2475-9066"), 
                              limit = lim)$data
i <- 1
while (nrow(papers) == i * lim) {
  papers <- dplyr::bind_rows(
    papers, 
    rcrossref::cr_works(filter = c(issn = "2475-9066"), 
                        limit = lim, offset = i * lim)$data)
  i <- i + 1
}
papers <- papers %>%
  dplyr::filter(type == "journal-article") 

## A few papers don't have DOIs - generate them from the URL
noaltid <- which(is.na(papers$alternative.id))
papers$alternative.id[noaltid] <- gsub("http://dx.doi.org/", "",
                                       papers$url[noaltid])

## Get citation info from Crossref and merge with paper details
cit <- rcrossref::cr_citation_count(doi = papers$alternative.id)
papers <- papers %>% dplyr::left_join(
  cit %>% dplyr::rename(citation_count = count), 
  by = c("alternative.id" = "doi")
)

## Remove one duplicated paper
papers <- papers %>% dplyr::filter(alternative.id != "10.21105/joss.00688")

source_track <- c(source_track, 
                  structure(rep("crossref", ncol(papers)), 
                            names = colnames(papers)))

Pull down info from Whedon API

For each published paper, we use the Whedon API to get information about pre-review and review issue numbers, corresponding software repository etc.

whedon <- list()
p <- 1
a <- jsonlite::fromJSON(
  url(paste0("https://joss.theoj.org/papers/published.json?page=", p)),
  simplifyDataFrame = FALSE
)
while (length(a) > 0) {
  whedon <- c(whedon, a)
  p <- p + 1
  a <- jsonlite::fromJSON(
    url(paste0("https://joss.theoj.org/papers/published.json?page=", p)),
    simplifyDataFrame = FALSE
  )
}

whedon <- do.call(dplyr::bind_rows, lapply(whedon, function(w) {
  data.frame(api_title = w$title, 
             api_state = w$state,
             editor = paste(w$metadata$paper$editor, collapse = ","),
             reviewers = paste(w$reviewers, collapse = ","),
             nbr_reviewers = length(w$reviewers),
             repo_url = w$repository_url,
             review_issue_id = w$review_issue_id,
             doi = w$doi,
             prereview_issue_id = ifelse(!is.null(w$meta_review_issue_id),
                                         w$meta_review_issue_id, NA_integer_),
             languages = paste(w$metadata$paper$languages, collapse = ","),
             archive_doi = w$metadata$paper$archive_doi)
}))

papers <- papers %>% dplyr::left_join(whedon, by = c("alternative.id" = "doi"))

source_track <- c(source_track, 
                  structure(rep("whedon", length(setdiff(colnames(papers),
                                                         names(source_track)))), 
                            names = setdiff(colnames(papers), names(source_track))))

Combine with info from GitHub issues

From each pre-review and review issue, we extract information about review times and assigned labels.

## Pull down info on all issues in the joss-reviews repository
issues <- gh("/repos/openjournals/joss-reviews/issues", 
             .limit = 5000, state = "all")
## From each issue, extract required information
iss <- do.call(dplyr::bind_rows, lapply(issues, function(i) {
  data.frame(title = i$title, 
             number = i$number,
             state = i$state,
             opened = i$created_at,
             closed = ifelse(!is.null(i$closed_at),
                             i$closed_at, NA_character_),
             ncomments = i$comments,
             labels = paste(setdiff(
               vapply(i$labels, getElement, 
                      name = "name", character(1L)),
               c("review", "pre-review", "query-scope", "paused")),
               collapse = ","))
}))

## Split into REVIEW, PRE-REVIEW, and other issues (the latter category 
## is discarded)
issother <- iss %>% dplyr::filter(!grepl("\\[PRE REVIEW\\]", title) & 
                                    !grepl("\\[REVIEW\\]", title))
dim(issother)
## [1] 134   7
head(issother)
##                                                                                                                                                                                                      title
## 1                                                Installation instructions: Is there a clearly-stated list of dependencies? Ideally these should be handled with an automated package management solution.
## 2                        A statement of need: Does the paper have a section titled 'Statement of Need' that clearly states what problems the software is designed to solve and who the target audience is?
## 3                                                                                                  State of the field: Do the authors describe how this software compares to other commonly-used packages?
## 4                                                        Performance: If there are any performance claims of the software, have they been confirmed? (If there are no claims, please check off this item.)
## 5 References: Is the list of references complete, and is everything cited appropriately that should be cited (e.g., papers, datasets, software)? Do references in the text use the proper citation syntax?
## 6                                                                                                                                Installation: Does installation proceed as outlined in the documentation?
##   number  state               opened               closed ncomments labels
## 1   4349 closed 2022-04-27T06:17:12Z 2022-04-27T06:17:14Z         1       
## 2   4348 closed 2022-04-27T06:14:07Z 2022-04-27T06:14:08Z         1       
## 3   4347 closed 2022-04-27T06:10:55Z 2022-04-27T06:10:56Z         2       
## 4   4346 closed 2022-04-27T06:03:40Z 2022-04-27T06:03:41Z         2       
## 5   4345 closed 2022-04-27T05:45:21Z 2022-04-27T05:45:22Z         1       
## 6   4344 closed 2022-04-27T05:12:12Z 2022-04-27T05:12:14Z         1
## For REVIEW issues, generate the DOI of the paper from the issue number
getnbrzeros <- function(s) {
  paste(rep(0, 5 - nchar(s)), collapse = "")
}
issrev <- iss %>% dplyr::filter(grepl("\\[REVIEW\\]", title)) %>%
  dplyr::mutate(nbrzeros = purrr::map_chr(number, getnbrzeros)) %>%
  dplyr::mutate(alternative.id = paste0("10.21105/joss.", 
                                        nbrzeros,
                                        number)) %>%
  dplyr::select(-nbrzeros) %>% 
  dplyr::mutate(title = gsub("\\[REVIEW\\]: ", "", title)) %>%
  dplyr::rename_at(vars(-alternative.id), ~ paste0("review_", .))
## For pre-review and review issues, respectively, get the number of 
## issues closed each month, and the number of those that have the 
## 'rejected' label
review_rejected <- iss %>% 
  dplyr::filter(grepl("\\[REVIEW\\]", title)) %>% 
  dplyr::filter(!is.na(closed)) %>%
  dplyr::mutate(closedmonth = lubridate::floor_date(as.Date(closed), "month")) %>%
  dplyr::group_by(closedmonth) %>%
  dplyr::summarize(nbr_issues_closed = length(labels),
                   nbr_rejections = sum(grepl("rejected", labels))) %>%
  dplyr::mutate(itype = "review")

prereview_rejected <- iss %>% 
  dplyr::filter(grepl("\\[PRE REVIEW\\]", title)) %>% 
  dplyr::filter(!is.na(closed)) %>%
  dplyr::mutate(closedmonth = lubridate::floor_date(as.Date(closed), "month")) %>%
  dplyr::group_by(closedmonth) %>%
  dplyr::summarize(nbr_issues_closed = length(labels),
                   nbr_rejections = sum(grepl("rejected", labels))) %>%
  dplyr::mutate(itype = "pre-review")

all_rejected <- dplyr::bind_rows(review_rejected, prereview_rejected)
## For PRE-REVIEW issues, add information about the corresponding REVIEW 
## issue number
isspre <- iss %>% dplyr::filter(grepl("\\[PRE REVIEW\\]", title)) %>%
  dplyr::filter(!grepl("withdrawn", labels)) %>%
  dplyr::filter(!grepl("rejected", labels))
## Some titles have multiple pre-review issues. In these cases, keep the latest
isspre <- isspre %>% dplyr::arrange(desc(number)) %>% 
  dplyr::filter(!duplicated(title)) %>% 
  dplyr::mutate(title = gsub("\\[PRE REVIEW\\]: ", "", title)) %>%
  dplyr::rename_all(~ paste0("prerev_", .))

papers <- papers %>% dplyr::left_join(issrev, by = "alternative.id") %>% 
  dplyr::left_join(isspre, by = c("prereview_issue_id" = "prerev_number")) %>%
  dplyr::mutate(prerev_opened = as.Date(prerev_opened),
                prerev_closed = as.Date(prerev_closed),
                review_opened = as.Date(review_opened),
                review_closed = as.Date(review_closed)) %>% 
  dplyr::mutate(days_in_pre = prerev_closed - prerev_opened,
                days_in_rev = review_closed - review_opened,
                to_review = !is.na(review_opened))

source_track <- c(source_track, 
                  structure(rep("joss-github", length(setdiff(colnames(papers),
                                                              names(source_track)))), 
                            names = setdiff(colnames(papers), names(source_track))))

Add information from software repositories

## Reorder so that software repositories that were interrogated longest 
## ago are checked first
tmporder <- order(match(papers$alternative.id, papers_archive$alternative.id),
                  na.last = FALSE)
software_urls <- papers$repo_url[tmporder]
is_github <- grepl("github", software_urls)
length(is_github)
## [1] 1668
sum(is_github)
## [1] 1584
software_urls[!is_github]
##  [1] "https://bitbucket.org/berkeleylab/hardware-control/src/main/"          
##  [2] "https://gitlab.com/culturalcartography/text2map"                       
##  [3] "https://gitlab.uliege.be/smart_grids/public/gboml"                     
##  [4] "https://bitbucket.org/sciencecapsule/sciencecapsule"                   
##  [5] "https://bitbucket.org/sciencecapsule/sciencecapsule"                   
##  [6] "https://bitbucket.org/sciencecapsule/sciencecapsule"                   
##  [7] "https://bitbucket.org/sciencecapsule/sciencecapsule"                   
##  [8] "https://ts-gitlab.iup.uni-heidelberg.de/utopia/utopia"                 
##  [9] "https://bitbucket.org/orionmhdteam/orion2_release1/src/master/"        
## [10] "https://gitlab.com/mmartin-lagarde/exonoodle-exoplanets/-/tree/master/"
## [11] "https://gitlab.inria.fr/bramas/tbfmm"                                  
## [12] "https://gitlab.com/myqueue/myqueue"                                    
## [13] "https://bitbucket.org/meg/cbcbeat"                                     
## [14] "https://gitlab.com/fduchate/predihood"                                 
## [15] "https://ts-gitlab.iup.uni-heidelberg.de/dorie/dorie"                   
## [16] "https://gitlab.com/pyFBS/pyFBS"                                        
## [17] "https://gitlab.com/gdetor/genetic_alg"                                 
## [18] "http://mutabit.com/repos.fossil/grafoscopio/"                          
## [19] "https://ts-gitlab.iup.uni-heidelberg.de/utopia/dantro"                 
## [20] "https://gitlab.com/jason-rumengan/pyarma"                              
## [21] "https://gitlab.com/ffaucher/hawen"                                     
## [22] "https://gitlab.com/manchester_qbi/manchester_qbi_public/madym_cxx/"    
## [23] "https://bitbucket.org/manuela_s/hcp/"                                  
## [24] "https://gitlab.com/libreumg/dataquier.git"                             
## [25] "https://savannah.nongnu.org/projects/complot/"                         
## [26] "https://gitlab.inria.fr/miet/miet"                                     
## [27] "https://bitbucket.org/cardosan/brightway2-temporalis"                  
## [28] "https://gitlab.com/cerfacs/batman"                                     
## [29] "https://bitbucket.org/hammurabicode/hamx"                              
## [30] "https://gitlab.com/emd-dev/emd"                                        
## [31] "https://gricad-gitlab.univ-grenoble-alpes.fr/ttk/spam/"                
## [32] "https://gitlab.com/vibes-developers/vibes"                             
## [33] "https://gitlab.com/remram44/taguette"                                  
## [34] "https://git.rwth-aachen.de/ants/sensorlab/imea"                        
## [35] "https://gitlab.com/picos-api/picos"                                    
## [36] "https://bitbucket.org/rram/dvrlib/src/joss/"                           
## [37] "https://gitlab.ethz.ch/holukas/dyco-dynamic-lag-compensation"          
## [38] "https://earth.bsc.es/gitlab/wuruchi/autosubmitreact"                   
## [39] "https://gitlab.com/sails-dev/sails"                                    
## [40] "https://bitbucket.org/clhaley/Multitaper.jl"                           
## [41] "https://gitlab.gwdg.de/mpievolbio-it/crbhits"                          
## [42] "https://gitlab.com/sissopp_developers/sissopp"                         
## [43] "https://gitlab.com/dlr-dw/ontocode"                                    
## [44] "https://gitlab.com/marinvaders/marinvaders"                            
## [45] "https://gitlab.com/project-dare/dare-platform"                         
## [46] "https://framagit.org/GustaveCoste/eldam"                               
## [47] "https://www.idpoisson.fr/fullswof/"                                    
## [48] "https://bitbucket.org/mpi4py/mpi4py-fft"                               
## [49] "https://gitlab.com/cracklet/cracklet.git"                              
## [50] "https://gitlab.inria.fr/azais/treex"                                   
## [51] "https://bitbucket.org/basicsums/basicsums"                             
## [52] "https://bitbucket.org/cdegroot/wediff"                                 
## [53] "https://gitlab.com/eidheim/Simple-Web-Server"                          
## [54] "https://gitlab.com/toposens/public/ros-packages"                       
## [55] "https://gitlab.com/QComms/cqptoolkit"                                  
## [56] "https://code.usgs.gov/umesc/quant-ecology/fishstan/"                   
## [57] "https://gitlab.com/moorepants/skijumpdesign"                           
## [58] "https://bitbucket.org/dolfin-adjoint/pyadjoint"                        
## [59] "https://gitlab.com/materials-modeling/wulffpack"                       
## [60] "https://gitlab.com/cosmograil/PyCS3"                                   
## [61] "https://gitlab.com/davidtourigny/dynamic-fba"                          
## [62] "https://bitbucket.org/likask/mofem-cephas"                             
## [63] "https://git.iws.uni-stuttgart.de/tools/frackit"                        
## [64] "https://bitbucket.org/miketuri/perl-spice-sim-seus/"                   
## [65] "https://bitbucket.org/ocellarisproject/ocellaris"                      
## [66] "https://gitlab.inria.fr/mosaic/bvpy"                                   
## [67] "https://gitlab.com/LMSAL_HUB/aia_hub/aiapy"                            
## [68] "https://bitbucket.org/berkeleylab/esdr-pygdh/"                         
## [69] "https://sourceforge.net/p/mcapl/mcapl_code/ci/master/tree/"            
## [70] "https://gitlab.com/dlr-ve/autumn/"                                     
## [71] "https://bitbucket.org/cmutel/brightway2"                               
## [72] "https://c4science.ch/source/tamaas/"                                   
## [73] "https://bitbucket.org/dghoshal/frieda"                                 
## [74] "https://gitlab.com/gims-developers/gims"                               
## [75] "https://gitlab.com/celliern/scikit-fdiff/"                             
## [76] "https://bitbucket.org/cloopsy/android/"                                
## [77] "https://doi.org/10.17605/OSF.IO/3DS6A"                                 
## [78] "https://gitlab.com/geekysquirrel/bigx"                                 
## [79] "https://gitlab.com/datafold-dev/datafold/"                             
## [80] "https://gitlab.com/tesch1/cppduals"                                    
## [81] "https://gitlab.com/energyincities/besos/"                              
## [82] "https://bitbucket.org/mituq/muq2.git"                                  
## [83] "https://gitlab.com/ampere2/metalwalls"                                 
## [84] "https://gitlab.com/costrouc/pysrim"
df <- do.call(dplyr::bind_rows, lapply(software_urls[is_github], function(u) {
  u0 <- gsub("^http://", "https://", gsub("\\.git$", "", gsub("/$", "", u)))
  if (grepl("/tree/", u0)) {
    u0 <- strsplit(u0, "/tree/")[[1]][1]
  }
  if (grepl("/blob/", u0)) {
    u0 <- strsplit(u0, "/blob/")[[1]][1]
  }
  info <- try({
    gh(gsub("(https://)?(www.)?github.com/", "/repos/", u0))
  })
  languages <- try({
    gh(paste0(gsub("(https://)?(www.)?github.com/", "/repos/", u0), "/languages"), 
       .limit = 500)
  })
  topics <- try({
    gh(paste0(gsub("(https://)?(www.)?github.com/", "/repos/", u0), "/topics"), 
       .accept = "application/vnd.github.mercy-preview+json", .limit = 500)
  })
  contribs <- try({
    gh(paste0(gsub("(https://)?(www.)?github.com/", "/repos/", u0), "/contributors"), 
       .limit = 500)
  })
  if (!is(info, "try-error") && length(info) > 1) {
    if (!is(contribs, "try-error")) {
      if (length(contribs) == 0) {
        repo_nbr_contribs <- repo_nbr_contribs_2ormore <- NA_integer_
      } else {
        repo_nbr_contribs <- length(contribs)
        repo_nbr_contribs_2ormore <- sum(vapply(contribs, function(x) x$contributions >= 2, NA_integer_))
        if (is.na(repo_nbr_contribs_2ormore)) {
          print(contribs)
        }
      }
    } else {
      repo_nbr_contribs <- repo_nbr_contribs_2ormore <- NA_integer_
    }
    
    if (!is(languages, "try-error")) {
      if (length(languages) == 0) {
        repolang <- ""
      } else {
        repolang <- paste(paste(names(unlist(languages)), 
                                unlist(languages), sep = ":"), collapse = ",")
      }
    } else {
      repolang <- ""
    }
    
    if (!is(topics, "try-error")) {
      if (length(topics$names) == 0) {
        repotopics <- ""
      } else {
        repotopics <- paste(unlist(topics$names), collapse = ",")
      }
    } else {
      repotopics <- ""
    }
    
    data.frame(repo_url = u, 
               repo_created = info$created_at,
               repo_updated = info$updated_at,
               repo_pushed = info$pushed_at,
               repo_nbr_stars = info$stargazers_count,
               repo_language = ifelse(!is.null(info$language),
                                      info$language, NA_character_),
               repo_languages_bytes = repolang,
               repo_topics = repotopics,
               repo_license = ifelse(!is.null(info$license),
                                     info$license$key, NA_character_),
               repo_nbr_contribs = repo_nbr_contribs,
               repo_nbr_contribs_2ormore = repo_nbr_contribs_2ormore
    )
  } else {
    NULL
  }
})) %>%
  dplyr::mutate(repo_created = as.Date(repo_created),
                repo_updated = as.Date(repo_updated),
                repo_pushed = as.Date(repo_pushed)) %>%
  dplyr::distinct() %>%
  dplyr::mutate(repo_info_obtained = lubridate::today())
stopifnot(length(unique(df$repo_url)) == length(df$repo_url))
dim(df)

## For papers not in df (i.e., for which we didn't get a valid response
## from the GitHub API query), use information from the archived data frame
dfarchive <- papers_archive %>% 
  dplyr::select(colnames(df)[colnames(df) %in% colnames(papers_archive)]) %>%
  dplyr::filter(!(repo_url %in% df$repo_url))
df <- dplyr::bind_rows(df, dfarchive)

papers <- papers %>% dplyr::left_join(df, by = "repo_url")

source_track <- c(source_track, 
                  structure(rep("sw-github", length(setdiff(colnames(papers),
                                                            names(source_track)))), 
                            names = setdiff(colnames(papers), names(source_track))))

Clean up a bit

## Convert publication date to Date format
## Add information about the half year (H1, H2) of publication
## Count number of authors
papers <- papers %>% dplyr::select(-reference, -license, -link) %>%
  dplyr::mutate(published.date = as.Date(published.print)) %>% 
  dplyr::mutate(
    halfyear = paste0(year(published.date), 
                      ifelse(month(published.date) <= 6, "H1", "H2"))
  ) %>% dplyr::mutate(
    halfyear = factor(halfyear, 
                      levels = paste0(rep(sort(unique(year(published.date))), 
                                          each = 2), c("H1", "H2")))
  ) %>% dplyr::mutate(nbr_authors = vapply(author, function(a) nrow(a), NA_integer_))
papers <- papers %>% dplyr::distinct()

source_track <- c(source_track, 
                  structure(rep("cleanup", length(setdiff(colnames(papers),
                                                          names(source_track)))), 
                            names = setdiff(colnames(papers), names(source_track))))

Tabulate number of missing values

In some cases, fetching information from (e.g.) the GitHub API fails for a subset of the publications. There are also other reasons for missing values (for example, the earliest submissions do not have an associated pre-review issue). The table below lists the number of missing values for each of the variables in the data frame.

DT::datatable(
  data.frame(variable = colnames(papers),
             nbr_missing = colSums(is.na(papers))) %>%
    dplyr::mutate(source = source_track[variable]),
  escape = FALSE, rownames = FALSE, 
  filter = list(position = 'top', clear = FALSE),
  options = list(scrollX = TRUE)
)

Number of published papers per month and year

ggplot(papers %>% 
         dplyr::mutate(pubmonth = lubridate::floor_date(published.date, "month")) %>%
         dplyr::group_by(pubmonth) %>%
         dplyr::summarize(npub = n()), 
       aes(x = factor(pubmonth), y = npub)) + 
  geom_bar(stat = "identity") + theme_minimal() + 
  labs(x = "", y = "Number of published papers per month", caption = dcap) + 
  theme(axis.title = element_text(size = 15),
        axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5))

ggplot(papers %>% 
         dplyr::mutate(pubyear = lubridate::year(published.date)) %>%
         dplyr::group_by(pubyear) %>%
         dplyr::summarize(npub = n()), 
       aes(x = factor(pubyear), y = npub)) + 
  geom_bar(stat = "identity") + theme_minimal() + 
  labs(x = "", y = "Number of published papers per year", caption = dcap) + 
  theme(axis.title = element_text(size = 15),
        axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5))

The plots below illustrate the fraction of pre-review and review issues closed during each month that have the ‘rejected’ label attached.

ggplot(all_rejected, 
       aes(x = factor(closedmonth), y = nbr_rejections/nbr_issues_closed)) + 
  geom_bar(stat = "identity") + 
  theme_minimal() + 
  facet_wrap(~ itype, ncol = 1) + 
  labs(x = "Month of issue closing", y = "Fraction of issues rejected",
       caption = dcap) + 
  theme(axis.title = element_text(size = 15),
        axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5))

Citation distribution

Papers with 20 or more citations are grouped in the “>=20” category.

ggplot(papers %>% 
         dplyr::mutate(citation_count = replace(citation_count,
                                                citation_count >= 20, ">=20")) %>%
         dplyr::mutate(citation_count = factor(citation_count, 
                                               levels = c(0:20, ">=20"))) %>%
         dplyr::group_by(citation_count) %>%
         dplyr::tally(),
       aes(x = citation_count, y = n)) + 
  geom_bar(stat = "identity") + 
  theme_minimal() + 
  labs(x = "Crossref citation count", y = "Number of publications", caption = dcap)

Most cited papers

The table below sorts the JOSS papers in decreasing order by the number of citations in Crossref.

DT::datatable(
  papers %>% 
    dplyr::mutate(url = paste0("<a href='", url, "' target='_blank'>", 
                               url,"</a>")) %>% 
    dplyr::arrange(desc(citation_count)) %>% 
    dplyr::select(title, url, published.date, citation_count),
  escape = FALSE,
  filter = list(position = 'top', clear = FALSE),
  options = list(scrollX = TRUE)
)

Citation count vs time since publication

plotly::ggplotly(
  ggplot(papers, aes(x = published.date, y = citation_count, label = title)) + 
    geom_point(alpha = 0.5) + theme_bw() + scale_y_sqrt() + 
    geom_smooth() + 
    labs(x = "Date of publication", y = "Crossref citation count", caption = dcap) + 
    theme(axis.title = element_text(size = 15)),
  tooltip = c("label", "x", "y")
)

Power law of citation count within each half year

Here, we plot the citation count for all papers published within each half year, sorted in decreasing order.

ggplot(papers %>% dplyr::group_by(halfyear) %>% 
         dplyr::arrange(desc(citation_count)) %>%
         dplyr::mutate(idx = seq_along(citation_count)), 
       aes(x = idx, y = citation_count)) + 
  geom_point(alpha = 0.5) + 
  facet_wrap(~ halfyear, scales = "free") + 
  theme_bw() + 
  labs(x = "Index", y = "Crossref citation count", caption = dcap)

Pre-review/review time over time

In these plots we investigate whether the time a submission spends in the pre-review or review stage has changed over time.

ggplot(papers, aes(x = prerev_opened, y = as.numeric(days_in_pre))) + 
  geom_point() + geom_smooth() + theme_bw() + 
  labs(x = "Date of pre-review opening", y = "Number of days in pre-review", 
       caption = dcap) + 
  theme(axis.title = element_text(size = 15))

ggplot(papers, aes(x = review_opened, y = as.numeric(days_in_rev))) + 
  geom_point() + geom_smooth() + theme_bw() + 
  labs(x = "Date of review opening", y = "Number of days in review", 
       caption = dcap) + 
  theme(axis.title = element_text(size = 15))

Languages

Next, we consider the languages used by the submissions, both as reported by Whedon and based on the information encoded in available GitHub repositories (for the latter, we also record the number of bytes of code written in each language). Note that a given submission can use multiple languages.

## Language information from Whedon
sspl <- strsplit(papers$languages, ",")
all_languages <- unique(unlist(sspl))
langs <- do.call(dplyr::bind_rows, lapply(all_languages, function(l) {
  data.frame(language = l,
             nbr_submissions_Whedon = sum(vapply(sspl, function(v) l %in% v, 0)))
}))

## Language information from GitHub software repos
a <- lapply(strsplit(papers$repo_languages_bytes, ","), function(w) strsplit(w, ":"))
a <- a[sapply(a, length) > 0]
langbytes <- as.data.frame(t(as.data.frame(a))) %>% 
  setNames(c("language", "bytes")) %>%
  dplyr::mutate(bytes = as.numeric(bytes)) %>%
  dplyr::filter(!is.na(language)) %>%
  dplyr::group_by(language) %>%
  dplyr::summarize(nbr_bytes_GitHub = sum(bytes),
                   nbr_repos_GitHub = length(bytes)) %>%
  dplyr::arrange(desc(nbr_bytes_GitHub))

langs <- dplyr::full_join(langs, langbytes, by = "language")
ggplot(langs %>% dplyr::arrange(desc(nbr_submissions_Whedon)) %>%
         dplyr::filter(nbr_submissions_Whedon > 10) %>%
         dplyr::mutate(language = factor(language, levels = language)),
       aes(x = language, y = nbr_submissions_Whedon)) + 
  geom_bar(stat = "identity") + 
  theme_bw() + 
  theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5)) + 
  labs(x = "", y = "Number of submissions", caption = dcap) + 
  theme(axis.title = element_text(size = 15))

DT::datatable(
  langs %>% dplyr::arrange(desc(nbr_bytes_GitHub)),
  escape = FALSE,
  filter = list(position = 'top', clear = FALSE),
  options = list(scrollX = TRUE)
)
ggplot(langs, aes(x = nbr_repos_GitHub, y = nbr_bytes_GitHub)) + 
  geom_point() + scale_x_log10() + scale_y_log10() + geom_smooth() + 
  theme_bw() + 
  labs(x = "Number of repos using the language",
       y = "Total number of bytes of code\nwritten in the language", 
       caption = dcap) + 
  theme(axis.title = element_text(size = 15))

Association between number of citations and number of stars of the GitHub repo

ggplotly(
  ggplot(papers, aes(x = citation_count, y = repo_nbr_stars,
                     label = title)) + 
    geom_point(alpha = 0.5) + scale_x_sqrt() + scale_y_sqrt() + 
    theme_bw() + 
    labs(x = "Crossref citation count", y = "Number of stars, GitHub repo", 
         caption = dcap) + 
    theme(axis.title = element_text(size = 15)),
  tooltip = c("label", "x", "y")
)

Distribution of time between GitHub repo creation and JOSS submission

ggplot(papers, aes(x = as.numeric(prerev_opened - repo_created))) +
  geom_histogram(bins = 50) + 
  theme_bw() + 
  labs(x = "Time (days) from repo creation to JOSS pre-review start", 
       caption = dcap) + 
  theme(axis.title = element_text(size = 15))

Distribution of time between JOSS acceptance and last commit

ggplot(papers, aes(x = as.numeric(repo_pushed - review_closed))) +
  geom_histogram(bins = 50) + 
  theme_bw() + 
  labs(x = "Time (days) from closure of JOSS review to most recent commit in repo",
       caption = dcap) + 
  theme(axis.title = element_text(size = 15)) + 
  facet_wrap(~ year(published.date), scales = "free_y")

Number of authors per paper

List the papers with the largest number of authors, and display the distribution of the number of authors per paper, for papers with at most 20 authors.

## Papers with largest number of authors
papers %>% dplyr::arrange(desc(nbr_authors)) %>% 
  dplyr::select(title, published.date, url, nbr_authors) %>%
  as.data.frame() %>% head(10)
##                                                                                                                          title
## 1                                                                                    SunPy: A Python package for Solar Physics
## 2                                                        ENZO: An Adaptive Mesh Refinement Code for Astrophysics (Version 2.6)
## 3  The Pencil Code, a modular MPI code for partial differential equations and particles: multipurpose and multiuser-maintained
## 4                                                     GRChombo: An adaptable numerical relativity code for fundamental physics
## 5                                                                                       PyBIDS: Python tools for BIDS datasets
## 6                                       DataLad: distributed system for joint management of code, data, and their relationship
## 7                                                                            Chaste: Cancer, Heart and Soft Tissue Environment
## 8                                                                           spam: Software for Practical Analysis of Materials
## 9                                                       SNEWPY: A Data Pipeline from Supernova Simulations to Neutrino Signals
## 10                                                                                       VIVO: a system for research discovery
##    published.date                                   url nbr_authors
## 1      2020-02-14 http://dx.doi.org/10.21105/joss.01832         124
## 2      2019-10-03 http://dx.doi.org/10.21105/joss.01636          55
## 3      2021-02-21 http://dx.doi.org/10.21105/joss.02807          38
## 4      2021-12-10 http://dx.doi.org/10.21105/joss.03703          32
## 5      2019-08-12 http://dx.doi.org/10.21105/joss.01294          31
## 6      2021-07-01 http://dx.doi.org/10.21105/joss.03262          31
## 7      2020-03-13 http://dx.doi.org/10.21105/joss.01848          29
## 8      2020-07-13 http://dx.doi.org/10.21105/joss.02286          27
## 9      2021-11-27 http://dx.doi.org/10.21105/joss.03772          26
## 10     2019-07-26 http://dx.doi.org/10.21105/joss.01182          25
nbins <- max(papers$nbr_authors[papers$nbr_authors <= 20])
ggplot(papers %>% dplyr::filter(nbr_authors <= 20),
  aes(x = nbr_authors)) + 
  geom_histogram(bins = nbins, fill = "lightgrey", color = "grey50") + 
  theme_bw() + 
  facet_wrap(~ year(published.date), scales = "free_y") + 
  theme(axis.title = element_text(size = 15)) + 
  labs(x = "Number of authors",
       y = "Number of publications with\na given number of authors", 
       caption = dcap)

ggplot(papers %>% 
         dplyr::mutate(nbr_authors = replace(nbr_authors, nbr_authors > 5, ">5")) %>%
         dplyr::mutate(nbr_authors = factor(nbr_authors, levels = c("1", "2", "3", 
                                                                    "4", "5", ">5"))) %>%
         dplyr::mutate(year = year(published.date)) %>%
         dplyr::mutate(year = factor(year)) %>%
         dplyr::group_by(year, nbr_authors, .drop = FALSE) %>%
         dplyr::summarize(n = n()) %>%
         dplyr::mutate(freq = n/sum(n)) %>%
         dplyr::mutate(year = as.integer(as.character(year))), 
       aes(x = year, y = freq, fill = nbr_authors)) + geom_area() + 
  theme_minimal() + 
  scale_fill_brewer(palette = "Set1", name = "Number of\nauthors", 
                    na.value = "grey") + 
  theme(axis.title = element_text(size = 15)) + 
  labs(x = "Year", y = "Fraction of submissions", caption = dcap)

Number of authors vs number of contributors to the GitHub repo

Note that points are slightly jittered to reduce the overlap.

plotly::ggplotly(
  ggplot(papers, aes(x = nbr_authors, y = repo_nbr_contribs_2ormore, label = title)) + 
    geom_abline(slope = 1, intercept = 0) + 
    geom_jitter(width = 0.05, height = 0.05, alpha = 0.5) + 
    # geom_point(alpha = 0.5) + 
    theme_bw() + 
    scale_x_sqrt() + scale_y_sqrt() + 
    labs(x = "Number of authors", 
         y = "Number of contributors\nwith at least 2 commits", 
         caption = dcap) + 
    theme(axis.title = element_text(size = 15)),
  tooltip = c("label", "x", "y")
)
## Warning: `gather_()` was deprecated in tidyr 1.2.0.
## Please use `gather()` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.

Number of reviewers per paper

Submissions associated with rOpenSci and pyOpenSci are not considered here, since they are not explicitly reviewed at JOSS.

ggplot(papers %>%
         dplyr::filter(!grepl("rOpenSci|pyOpenSci", prerev_labels)) %>%
         dplyr::mutate(year = year(published.date)),
       aes(x = nbr_reviewers)) + geom_bar() + 
  facet_wrap(~ year) + theme_bw() + 
  labs(x = "Number of reviewers", y = "Number of submissions", caption = dcap)

Most active reviewers

Submissions associated with rOpenSci and pyOpenSci are not considered here, since they are not explicitly reviewed at JOSS.

reviewers <- papers %>% 
  dplyr::filter(!grepl("rOpenSci|pyOpenSci", prerev_labels)) %>%
  dplyr::mutate(year = year(published.date)) %>%
  dplyr::select(reviewers, year) %>%
  tidyr::separate_rows(reviewers, sep = ",")

## Most active reviewers
DT::datatable(
  reviewers %>% dplyr::group_by(reviewers) %>%
    dplyr::summarize(nbr_reviews = length(year),
                     timespan = paste(unique(c(min(year), max(year))), 
                                      collapse = " - ")) %>%
    dplyr::arrange(desc(nbr_reviews)),
  escape = FALSE, rownames = FALSE, 
  filter = list(position = 'top', clear = FALSE),
  options = list(scrollX = TRUE)
)

Number of papers per editor and year

ggplot(papers %>% 
         dplyr::mutate(year = year(published.date),
                       `r/pyOpenSci` = factor(
                         grepl("rOpenSci|pyOpenSci", prerev_labels),
                         levels = c("TRUE", "FALSE"))), 
       aes(x = editor)) + geom_bar(aes(fill = `r/pyOpenSci`)) + 
  theme_bw() + facet_wrap(~ year, ncol = 1) + 
  scale_fill_manual(values = c(`TRUE` = "grey65", `FALSE` = "grey35")) + 
  theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5)) + 
  labs(x = "Editor", y = "Number of submissions", caption = dcap)

Distribution of software repo licenses

all_licenses <- sort(unique(papers$repo_license))
license_levels = c(grep("apache", all_licenses, value = TRUE),
                   grep("bsd", all_licenses, value = TRUE),
                   grep("mit", all_licenses, value = TRUE),
                   grep("gpl", all_licenses, value = TRUE),
                   grep("mpl", all_licenses, value = TRUE))
license_levels <- c(license_levels, setdiff(all_licenses, license_levels))
ggplot(papers %>% 
         dplyr::mutate(repo_license = factor(repo_license, 
                                             levels = license_levels)),
       aes(x = repo_license)) +
  geom_bar() + 
  theme_bw() + 
  labs(x = "Software license", y = "Number of submissions", caption = dcap) + 
  theme(axis.title = element_text(size = 15),
        axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5)) + 
  facet_wrap(~ year(published.date), scales = "free_y")

## For plots below, replace licenses present in less 
## than 2.5% of the submissions by 'other'
tbl <- table(papers$repo_license)
to_replace <- names(tbl[tbl <= 0.025 * nrow(papers)])
ggplot(papers %>% 
         dplyr::mutate(year = year(published.date)) %>%
         dplyr::mutate(repo_license = replace(repo_license, 
                                              repo_license %in% to_replace,
                                              "other")) %>%
         dplyr::mutate(year = factor(year), 
                       repo_license = factor(
                         repo_license, 
                         levels = license_levels[license_levels %in% repo_license]
                       )) %>%
         dplyr::group_by(year, repo_license, .drop = FALSE) %>%
         dplyr::count() %>%
         dplyr::mutate(year = as.integer(as.character(year))), 
       aes(x = year, y = n, fill = repo_license)) + geom_area() + 
  theme_minimal() + 
  scale_fill_brewer(palette = "Set1", name = "Software\nlicense", 
                    na.value = "grey") + 
  theme(axis.title = element_text(size = 15)) + 
  labs(x = "Year", y = "Number of submissions", caption = dcap)

ggplot(papers %>% 
         dplyr::mutate(year = year(published.date)) %>%
         dplyr::mutate(repo_license = replace(repo_license, 
                                              repo_license %in% to_replace,
                                              "other")) %>%
         dplyr::mutate(year = factor(year), 
                       repo_license = factor(
                         repo_license, 
                         levels = license_levels[license_levels %in% repo_license]
                       )) %>%
         dplyr::group_by(year, repo_license, .drop = FALSE) %>%
         dplyr::summarize(n = n()) %>%
         dplyr::mutate(freq = n/sum(n)) %>%
         dplyr::mutate(year = as.integer(as.character(year))), 
       aes(x = year, y = freq, fill = repo_license)) + geom_area() + 
  theme_minimal() + 
  scale_fill_brewer(palette = "Set1", name = "Software\nlicense", 
                    na.value = "grey") + 
  theme(axis.title = element_text(size = 15)) + 
  labs(x = "Year", y = "Fraction of submissions", caption = dcap)

Most common GitHub repo topics

a <- unlist(strsplit(papers$repo_topics, ","))
a <- a[!is.na(a)]
topicfreq <- table(a)

colors <- viridis::viridis(100)
set.seed(1234)
wordcloud::wordcloud(
  names(topicfreq), sqrt(topicfreq), min.freq = 1, max.words = 300,
  random.order = FALSE, rot.per = 0.05, use.r.layout = FALSE, 
  colors = colors, scale = c(10, 0.1), random.color = TRUE,
  ordered.colors = FALSE, vfont = c("serif", "plain")
)

DT::datatable(as.data.frame(topicfreq) %>% 
                dplyr::rename(topic = a, nbr_repos = Freq) %>%
                dplyr::arrange(desc(nbr_repos)),
  escape = FALSE, rownames = FALSE, 
  filter = list(position = 'top', clear = FALSE),
  options = list(scrollX = TRUE))

Citation analysis

Here, we take a more detailed look at the papers that cite JOSS papers, using data from the Open Citations Corpus.

Get citing papers for each submission

citations <- tryCatch({
  citecorp::oc_coci_cites(doi = papers$alternative.id) %>%
    dplyr::distinct() %>%
    dplyr::mutate(citation_info_obtained = as.character(lubridate::today()))
}, error = function(e) {
  NULL
})
dim(citations)
## [1] 16907     8
if (!is.null(citations)) {
  citations <- citations %>% 
    dplyr::filter(!(oci %in% citations_archive$oci))
  
  tmpj <- rcrossref::cr_works(dois = unique(citations$citing))$data %>%
    dplyr::select(contains("doi"), contains("container.title"), contains("issn"),
                  contains("type"), contains("publisher"), contains("prefix"))
  citations <- citations %>% dplyr::left_join(tmpj, by = c("citing" = "doi"))
  
  ## bioRxiv preprints don't have a 'container.title' or 'issn', but we'll assume 
  ## that they can be 
  ## identified from the prefix 10.1101 - set the container.title 
  ## for these records manually; we may or may not want to count these
  ## (would it count citations twice, both preprint and publication?)
  citations$container.title[citations$prefix == "10.1101"] <- "bioRxiv"
  
  ## JOSS is represented by 'The Journal of Open Source Software' as well as 
  ## 'Journal of Open Source Software'
  citations$container.title[citations$container.title == 
                              "Journal of Open Source Software"] <- 
    "The Journal of Open Source Software"
  
  ## Remove real self citations (cited DOI = citing DOI)
  citations <- citations %>% dplyr::filter(cited != citing)
  
  ## Merge with the archive
  citations <- dplyr::bind_rows(citations, citations_archive)
} else {
  citations <- citations_archive
  if (is.null(citations[["citation_info_obtained"]])) {
    citations$citation_info_obtained <- NA_character_
  }
}

citations$citation_info_obtained[is.na(citations$citation_info_obtained)] <- 
  "2021-08-11"

write.table(citations, file = "joss_submission_citations.tsv",
            row.names = FALSE, col.names = TRUE, sep = "\t", quote = FALSE)

Summary statistics

## Latest successful update of new citation data
max(as.Date(citations$citation_info_obtained))
## [1] "2022-04-06"
## Number of JOSS papers with >0 citations included in this collection
length(unique(citations$cited))
## [1] 968
## Number of JOSS papers with >0 citations according to Crossref
length(which(papers$citation_count > 0))
## [1] 1044
## Number of citations from Open Citations Corpus vs Crossref
df0 <- papers %>% dplyr::select(doi, citation_count) %>%
  dplyr::full_join(citations %>% dplyr::group_by(cited) %>%
                     dplyr::tally() %>%
                     dplyr::mutate(n = replace(n, is.na(n), 0)),
                   by = c("doi" = "cited"))
## Total citation count Crossref
sum(df0$citation_count, na.rm = TRUE)
## [1] 19903
## Total citation count Open Citations Corpus
sum(df0$n, na.rm = TRUE)
## [1] 16978
## Ratio of total citation count Open Citations Corpus/Crossref
sum(df0$n, na.rm = TRUE)/sum(df0$citation_count, na.rm = TRUE)
## [1] 0.8530372
ggplot(df0, aes(x = citation_count, y = n)) + 
  geom_abline(slope = 1, intercept = 0) + 
  geom_point(size = 3, alpha = 0.5) + 
  labs(x = "Crossref citation count", y = "Open Citations Corpus citation count",
       caption = dcap) + 
  theme_bw()

## Zoom in
ggplot(df0, aes(x = citation_count, y = n)) + 
  geom_abline(slope = 1, intercept = 0) + 
  geom_point(size = 3, alpha = 0.5) + 
  labs(x = "Crossref citation count", y = "Open Citations Corpus citation count",
       caption = dcap) + 
  theme_bw() + 
  coord_cartesian(xlim = c(0, 75), ylim = c(0, 75))

## Number of journals citing JOSS papers
length(unique(citations$container.title))
## [1] 3951
length(unique(citations$issn))
## [1] 3417

Most citing journals

topcit <- citations %>% dplyr::group_by(container.title) %>%
  dplyr::summarize(nbr_citations_of_joss_papers = length(cited),
                   nbr_cited_joss_papers = length(unique(cited)),
                   nbr_citing_papers = length(unique(citing)),
                   nbr_selfcitations_of_joss_papers = sum(author_sc == "yes"),
                   fraction_selfcitations = signif(nbr_selfcitations_of_joss_papers /
                     nbr_citations_of_joss_papers, digits = 3)) %>%
  dplyr::arrange(desc(nbr_cited_joss_papers))
DT::datatable(topcit,
  escape = FALSE, rownames = FALSE, 
  filter = list(position = 'top', clear = FALSE),
  options = list(scrollX = TRUE))
plotly::ggplotly(
  ggplot(topcit, aes(x = nbr_citations_of_joss_papers, y = nbr_cited_joss_papers,
                     label = container.title)) + 
    geom_abline(slope = 1, intercept = 0, linetype = "dashed", color = "grey") + 
    geom_point(size = 3, alpha = 0.5) + 
    theme_bw() + 
    labs(caption = dcap, x = "Number of citations of JOSS papers",
         y = "Number of cited JOSS papers")
)
plotly::ggplotly(
  ggplot(topcit, aes(x = nbr_citations_of_joss_papers, y = nbr_cited_joss_papers,
                     label = container.title)) + 
    geom_abline(slope = 1, intercept = 0, linetype = "dashed", color = "grey") + 
    geom_point(size = 3, alpha = 0.5) + 
    theme_bw() + 
    coord_cartesian(xlim = c(0, 100), ylim = c(0, 50)) + 
    labs(caption = dcap, x = "Number of citations of JOSS papers",
         y = "Number of cited JOSS papers")
)
write.table(topcit, file = "joss_submission_citations_byjournal.tsv",
            row.names = FALSE, col.names = TRUE, sep = "\t", quote = FALSE)

Save object

The tibble object with all data collected above is serialized to a file that can be downloaded and reused.

head(papers) %>% as.data.frame()
##        alternative.id                     container.title    created  deposited
## 1 10.21105/joss.02331     Journal of Open Source Software 2020-09-07 2020-09-07
## 2 10.21105/joss.00773     Journal of Open Source Software 2018-06-15 2019-10-19
## 3 10.21105/joss.03596     Journal of Open Source Software 2022-02-10 2022-02-10
## 4 10.21105/joss.01720     Journal of Open Source Software 2020-06-21 2020-06-21
## 5 10.21105/joss.00505 The Journal of Open Source Software 2018-02-01 2018-02-01
## 6 10.21105/joss.02804     Journal of Open Source Software 2020-12-14 2020-12-14
##   published.print                 doi    indexed      issn issue     issued
## 1      2020-09-07 10.21105/joss.02331 2022-03-29 2475-9066    53 2020-09-07
## 2      2018-06-15 10.21105/joss.00773 2022-03-29 2475-9066    26 2018-06-15
## 3      2022-02-10 10.21105/joss.03596 2022-03-29 2475-9066    70 2022-02-10
## 4      2020-06-21 10.21105/joss.01720 2022-03-30 2475-9066    50 2020-06-21
## 5      2018-02-01 10.21105/joss.00505 2022-03-30 2475-9066    22 2018-02-01
## 6      2020-12-14 10.21105/joss.02804 2022-03-30 2475-9066    56 2020-12-14
##   member page   prefix        publisher score   source reference.count
## 1   8722 2331 10.21105 The Open Journal     0 Crossref              14
## 2   8722  773 10.21105 The Open Journal     0 Crossref              37
## 3   8722 3596 10.21105 The Open Journal     0 Crossref              26
## 4   8722 1720 10.21105 The Open Journal     0 Crossref               4
## 5   8722  505 10.21105 The Open Journal     0 Crossref               6
## 6   8722 2804 10.21105 The Open Journal     0 Crossref              28
##   references.count is.referenced.by.count
## 1               14                      0
## 2               37                     20
## 3               26                      0
## 4                4                      0
## 5                6                      7
## 6               28                      0
##                                                                                                                                         title
## 1                                Flint: a simulator for biological and physiological models in ordinary and stochastic differential equations
## 2                                                               Galore: Broadening and weighting for simulation of photoelectron spectroscopy
## 3                                         Nempy: A Python package for modelling the Australian National Electricity Market dispatch procedure
## 4 Torsional Axisymmetric Core Oscillations Visualiser (TACO-VIS): A Python module for animating torsional wave data for fluid planetary cores
## 5                                                                      Finch: a tool adding dynamic abundance filtering to genomic MinHashing
## 6                                                                                            gospl: Global Scalable Paleo Landscape Evolution
##              type                                   url volume
## 1 journal-article http://dx.doi.org/10.21105/joss.02331      5
## 2 journal-article http://dx.doi.org/10.21105/joss.00773      3
## 3 journal-article http://dx.doi.org/10.21105/joss.03596      7
## 4 journal-article http://dx.doi.org/10.21105/joss.01720      5
## 5 journal-article http://dx.doi.org/10.21105/joss.00505      3
## 6 journal-article http://dx.doi.org/10.21105/joss.02804      5
##   short.container.title
## 1                  JOSS
## 2                  JOSS
## 3                  JOSS
## 4                  JOSS
## 5                  JOSS
## 6                  JOSS
##                                                                                                                                                                                                                                                                                                                                    author
## 1                                                                                                                                                                                              http://orcid.org/0000-0002-7074-4561, http://orcid.org/0000-0001-5519-4306, FALSE, FALSE, Takeshi, Yoshiyuki, Abe, Asai, first, additional
## 2 http://orcid.org/0000-0001-5272-6530, http://orcid.org/0000-0002-4486-3321, http://orcid.org/0000-0002-3747-3763, NA, http://orcid.org/0000-0001-9174-8601, FALSE, FALSE, FALSE, NA, FALSE, Adam, Alex, Anna, Russell, David, J Jackson, M Ganose, Regoutz, G. Egdell, O Scanlon, first, additional, additional, additional, additional
## 3                                                                                                                                                                                                                                                             Nicholas, Anna, Iain, Gorman, Bruce, MacGill, first, additional, additional
## 4                                                                                                                                                          http://orcid.org/0000-0001-9303-6229, http://orcid.org/0000-0001-7591-6716, NA, FALSE, FALSE, NA, Sam, Philip, Grace, Greenwood, Livermore, Cox, first, additional, additional
## 5                                                                                                                                                                                          http://orcid.org/0000-0002-8819-9549, http://orcid.org/0000-0001-8637-406X, FALSE, FALSE, Roderick, Nick, Bovee, Greenfield, first, additional
## 6                                                                                                                http://orcid.org/0000-0001-6095-7689, http://orcid.org/0000-0003-2595-2414, http://orcid.org/0000-0002-6751-4976, FALSE, FALSE, FALSE, Tristan, Claire, Sabin, Salles, Mallard, Zahirovic, first, additional, additional
##   citation_count
## 1              0
## 2             20
## 3              0
## 4              0
## 5              7
## 6              0
##                                                                                                                                     api_title
## 1                                Flint: a simulator for biological and physiological models in ordinary and stochastic differential equations
## 2                                                               Galore: Broadening and weighting for simulation of photoelectron spectroscopy
## 3                                         Nempy: A Python package for modelling the Australian National Electricity Market dispatch procedure
## 4 Torsional Axisymmetric Core Oscillations Visualiser (TACO-VIS): A Python module for animating torsional wave data for fluid planetary cores
## 5                                                                      Finch: a tool adding dynamic abundance filtering to genomic MinHashing
## 6                                                                                            gospl: Global Scalable Paleo Landscape Evolution
##   api_state       editor               reviewers nbr_reviewers
## 1  accepted    @majensen    @funasoul,@mstimberg             2
## 2  accepted       @arfon                 @shyamd             1
## 3  accepted @timtroendle     @noah80,@robinroche             2
## 4  accepted    @leouieda @malmans2,@banesullivan             2
## 5  accepted  @biorelated               @HadrienG             1
## 6  accepted   @kbarnhart @johnjarmitage,@cmshobe             2
##                                    repo_url review_issue_id prereview_issue_id
## 1     https://github.com/flintproject/Flint            2331               2238
## 2        https://github.com/SMTG-UCL/galore             773                696
## 3        https://github.com/UNSW-CEEM/nempy            3596               3576
## 4 https://github.com/sam-greenwood/taco_vis            1720               1657
## 5      https://github.com/onecodex/finch-rs             505                378
## 6         https://github.com/Geodels/gospl/            2804               2771
##                                   languages
## 1                   CMake,Makefile,M4,C++,C
## 2                           Python,TeX,Roff
## 3                                Python,TeX
## 4                                    Python
## 5                                  TeX,Rust
## 6 Shell,Fortran,Python,Jupyter Notebook,TeX
##                                archive_doi
## 1   https://doi.org/10.5281/zenodo.4017040
## 2 http://dx.doi.org/10.5281/zenodo.1240359
## 3   https://doi.org/10.5281/zenodo.5989170
## 4   https://doi.org/10.5281/zenodo.3902334
## 5 http://dx.doi.org/10.5281/zenodo.1164259
## 6   https://doi.org/10.5281/zenodo.4319332
##                                                                                                                                   review_title
## 1                                 Flint: a simulator for biological and physiological models in ordinary and stochastic differential equations
## 2                                                                Galore: Broadening and weighting for simulation of photoelectron spectroscopy
## 3                                          Nempy: A Python package for modelling the Australian National Electricity Market dispatch procedure
## 4 Torsional Axisymmetric Core Oscillations Visualiser (TACO-VIS): A python module for animating torsional wave data for fluid planetary cores.
## 5                                                      Finch: MinHashing for Sequencing Data with Abundance Calculation and Adaptive Filtering
## 6                                                                                             gospl: Global Scalable Paleo Landscape Evolution
##   review_number review_state review_opened review_closed review_ncomments
## 1          2331       closed    2020-06-12    2020-09-07               73
## 2           773       closed    2018-06-11    2018-06-15               15
## 3          3596       closed    2021-08-10    2022-02-10               83
## 4          1720       closed    2019-09-09    2020-06-21               60
## 5           505       closed    2017-12-13    2018-02-01               27
## 6          2804       closed    2020-10-30    2020-12-14               69
##                                              review_labels
## 1                      accepted,recommend-accept,published
## 2                      accepted,recommend-accept,published
## 3               accepted,Python,recommend-accept,published
## 4                      accepted,recommend-accept,published
## 5                      accepted,recommend-accept,published
## 6 accepted,Shell,Python,Fortran,recommend-accept,published
##                                                                                                                                   prerev_title
## 1                                 Flint: a simulator for biological and physiological models in ordinary and stochastic differential equations
## 2                                                                Galore: Broadening and weighting for simulation of photoelectron spectroscopy
## 3                                          Nempy: A Python package for modelling the Australian National Electricity Market dispatch procedure
## 4 Torsional Axisymmetric Core Oscillations Visualiser (TACO-VIS): A python module for animating torsional wave data for fluid planetary cores.
## 5                                                      Finch: MinHashing for Sequencing Data with Abundance Calculation and Adaptive Filtering
## 6                                                                                             gospl: Global Scalable Paleo Landscape Evolution
##   prerev_state prerev_opened prerev_closed prerev_ncomments
## 1       closed    2020-05-23    2020-06-12               30
## 2       closed    2018-04-23    2018-06-11               34
## 3       closed    2021-08-06    2021-08-10               23
## 4       closed    2019-08-17    2019-09-09               31
## 5       closed    2017-08-25    2017-12-13               23
## 6       closed    2020-10-23    2020-10-30               25
##          prerev_labels days_in_pre days_in_rev to_review repo_created
## 1    Makefile,CMake,M4     20 days     87 days      TRUE   2015-03-27
## 2      TeX,Python,Roff     49 days      4 days      TRUE   2016-07-22
## 3    Python,waitlisted      4 days    184 days      TRUE   2020-04-14
## 4               Python     23 days    286 days      TRUE   2019-01-10
## 5                         110 days     50 days      TRUE   2016-12-30
## 6 Shell,Python,Fortran      7 days     45 days      TRUE   2019-09-07
##   repo_updated repo_pushed repo_nbr_stars repo_language
## 1   2022-01-07  2022-02-27              5           C++
## 2   2022-02-18  2021-11-28             18        Python
## 3   2022-03-29  2022-03-04             22        Python
## 4   2021-11-26  2021-11-26              1        Python
## 5   2022-04-03  2021-11-29             72          Rust
## 6   2022-03-06  2022-03-14             24        Python
##                                                                     repo_languages_bytes
## 1                   C++:7499899,M4:89071,C:88263,Makefile:78833,Scheme:72030,CMake:22693
## 2                                                     Python:104562,TeX:26563,Roff:18299
## 3                                                                 Python:713449,TeX:9066
## 4                                                                  Python:50811,TeX:1452
## 5                                   Rust:217499,Cap'n Proto:5006,TeX:2566,Dockerfile:809
## 6 Python:375345,Jupyter Notebook:60269,Fortran:54463,TeX:9682,Dockerfile:2867,Shell:2265
##                                                                                                                                            repo_topics
## 1                                                                                                simulator,biology,physiology,cellml,phml,sbml,ode,sde
## 2                                                                                                                                                     
## 3                                                                                                                                                     
## 4                                                                                                                                                     
## 5                                                                                                                                                     
## 6 paleogeography,sediment-transport,paleoclimate,landscape,landscape-evolution-model,basin-modeling,sedimentation,erosion-process,lithology,compaction
##   repo_license repo_nbr_contribs repo_nbr_contribs_2ormore repo_info_obtained
## 1          mit                 3                         2         2022-03-09
## 2      gpl-3.0                 3                         2         2022-03-16
## 3        other                 2                         1         2022-04-06
## 4        other                 3                         2         2022-03-16
## 5          mit                 8                         5         2022-04-20
## 6      gpl-3.0                 3                         3         2022-04-13
##   published.date halfyear nbr_authors
## 1     2020-09-07   2020H2           2
## 2     2018-06-15   2018H1           5
## 3     2022-02-10   2022H1           3
## 4     2020-06-21   2020H1           3
## 5     2018-02-01   2018H1           2
## 6     2020-12-14   2020H2           3
saveRDS(papers, file = "joss_submission_analytics.rds")

To read the current version of this file directly from GitHub, use the following code:

papers <- readRDS(gzcon(url("https://github.com/openjournals/joss-analytics/blob/gh-pages/joss_submission_analytics.rds?raw=true")))

Session info

sessionInfo()
## R version 4.2.0 (2022-04-22)
## Platform: x86_64-apple-darwin17.0 (64-bit)
## Running under: macOS Big Sur/Monterey 10.16
## 
## Matrix products: default
## BLAS:   /Library/Frameworks/R.framework/Versions/4.2/Resources/lib/libRblas.0.dylib
## LAPACK: /Library/Frameworks/R.framework/Versions/4.2/Resources/lib/libRlapack.dylib
## 
## locale:
## [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
##  [1] readr_2.1.2        citecorp_0.3.0     plotly_4.10.0      DT_0.22           
##  [5] jsonlite_1.8.0     purrr_0.3.4        gh_1.3.0           lubridate_1.8.0   
##  [9] ggplot2_3.3.5      tidyr_1.2.0        dplyr_1.0.8        rcrossref_1.1.0.99
## [13] tibble_3.1.6      
## 
## loaded via a namespace (and not attached):
##  [1] viridis_0.6.2      httr_1.4.2         sass_0.4.1         splines_4.2.0     
##  [5] bit64_4.0.5        vroom_1.5.7        viridisLite_0.4.0  bslib_0.3.1       
##  [9] shiny_1.7.1        highr_0.9          triebeard_0.3.0    urltools_1.7.3    
## [13] yaml_2.3.5         lattice_0.20-45    pillar_1.7.0       glue_1.6.2        
## [17] digest_0.6.29      RColorBrewer_1.1-3 promises_1.2.0.1   colorspace_2.0-3  
## [21] Matrix_1.4-1       htmltools_0.5.2    httpuv_1.6.5       plyr_1.8.7        
## [25] pkgconfig_2.0.3    httpcode_0.3.0     xtable_1.8-4       gitcreds_0.1.1    
## [29] scales_1.2.0       whisker_0.4        later_1.3.0        tzdb_0.3.0        
## [33] mgcv_1.8-40        generics_0.1.2     farver_2.1.0       ellipsis_0.3.2    
## [37] withr_2.5.0        lazyeval_0.2.2     cli_3.3.0          magrittr_2.0.3    
## [41] crayon_1.5.1       mime_0.12          evaluate_0.15      fansi_1.0.3       
## [45] nlme_3.1-157       xml2_1.3.3         tools_4.2.0        data.table_1.14.2 
## [49] hms_1.1.1          lifecycle_1.0.1    stringr_1.4.0      munsell_0.5.0     
## [53] compiler_4.2.0     jquerylib_0.1.4    rlang_1.0.2        grid_4.2.0        
## [57] htmlwidgets_1.5.4  crosstalk_1.2.0    miniUI_0.1.1.1     labeling_0.4.2    
## [61] rmarkdown_2.14     gtable_0.3.0       curl_4.3.2         fauxpas_0.5.0     
## [65] R6_2.5.1           gridExtra_2.3      knitr_1.39         fastmap_1.1.0     
## [69] bit_4.0.4          utf8_1.2.2         stringi_1.7.6      parallel_4.2.0    
## [73] crul_1.2.0         Rcpp_1.0.8.3       vctrs_0.4.1        wordcloud_2.6     
## [77] tidyselect_1.1.2   xfun_0.30